home *** CD-ROM | disk | FTP | other *** search
/ The 640 MEG Shareware Studio 2 / The 640 Meg Shareware Studio CD-ROM Volume II (Data Express)(1993).ISO / lan / l11p02.zip / STACKFIX.PAT < prev   
Text File  |  1992-08-07  |  920b  |  26 lines

  1. TARGET=C:\NWLITE\SERVER.EXE
  2. LIST
  3.     print "STACKFIX.PAT - NetWare Lite Server stack initialization fix patch.\n"
  4. VERIFY
  5.     va = search ( 90 90 90 90 90 90 90 E8 80 00 checksum 558 )
  6.     if va=3095 then
  7.         print "  $TARGET already contains patch STACKFIX.PAT.\n"
  8.         stop
  9.     else
  10.         print "  $TARGET does not contain patch STACKFIX.PAT.\n"
  11.     endif
  12. APPLY
  13.     print "  Applying patch STACKFIX.PAT to $TARGET...\n"
  14.     vb = search ( FA 1E 17 BC 20 13 FB E8 80 00 checksum 481 )
  15.     if vb=3095 then
  16.         patch 3095 ( 90 90 90 90 90 90 90 checksum 3F0 )
  17.         write
  18.         print "  $TARGET now contains patch STACKFIX.PAT.\n"
  19.         stop
  20.     else
  21.         print "  Could not find pattern indicating that $TARGET\n"
  22.         print "  needs this patch.  Make sure you are using this\n"
  23.         print "  patch with NetWare Lite SERVER.EXE, version 1.1.\n"
  24.         stop
  25.     endif
  26.